home *** CD-ROM | disk | FTP | other *** search
/ 404 Jogos / CLJG.iso / Aventura / FireMan.swf / scripts / frame_1056 / PlaceObject2_276_1146 / CLIPACTIONRECORD onClipEvent(enterFrame).as next >
Text File  |  2008-09-12  |  1KB  |  52 lines

  1. onClipEvent(enterFrame){
  2.    function drawframe2()
  3.    {
  4.       if(_root.estado == 6)
  5.       {
  6.          this.gotoAndStop("slide");
  7.          return undefined;
  8.       }
  9.       if(_root.estado == 3)
  10.       {
  11.          this.gotoAndStop("jump");
  12.          return undefined;
  13.       }
  14.       if(_root.estado == 4)
  15.       {
  16.          this.gotoAndStop("attackJ");
  17.          return undefined;
  18.       }
  19.       if(_root.estado == 5)
  20.       {
  21.          this.gotoAndStop("fall");
  22.          return undefined;
  23.       }
  24.       if(_root.estado == 2)
  25.       {
  26.          this.gotoAndStop("attackRU");
  27.          sprite.gotoAndPlay(frame);
  28.          return undefined;
  29.       }
  30.       if(_root.estado == 0)
  31.       {
  32.          this.gotoAndStop("standing");
  33.          return undefined;
  34.       }
  35.       if(_root.estado == 1)
  36.       {
  37.          this.gotoAndStop("run");
  38.          return undefined;
  39.       }
  40.    }
  41.    death = false;
  42.    if(_X > 32)
  43.    {
  44.       _X = _X - dx;
  45.    }
  46.    if(_root.trans.u)
  47.    {
  48.       _Y = _Y + 1;
  49.    }
  50.    drawframe2();
  51. }
  52.